home *** CD-ROM | disk | FTP | other *** search
/ Chip 1997 March / CHIP Mart 1997.iso / SurfCam / SURFCAM.Z / OKKFAN.M3 < prev    next >
Text File  |  1996-04-01  |  4KB  |  145 lines

  1. name Fanuc OKK
  2.  
  3. % 00
  4. / 00
  5. O >4
  6. N >4
  7. G >2
  8. g >2 G
  9. X ->3.>4
  10. Y ->3.>4
  11. Z ->3.>4
  12. z ->3.>4 Z
  13. I ->3.>4
  14. J ->3.>4
  15. K ->3.>4
  16. Q ->3.>4
  17. R ->3.>4
  18. P >40
  19. F >3.1
  20. H >2
  21. D >2
  22. S >4
  23. M >2
  24. T >2
  25.  
  26. ModalLetters F R                      # List of letters that are modal    
  27.  
  28. ModalGs 0 1 2 3 73 74 76 80 81 82 83 84 85 90 91  # List of g codes that are modal    
  29.  
  30. Sequence#s N 0 1 1                    # Char, freq, incr & start          
  31. First#? N                             # Y or N  'Output 1st sequence no.  
  32. Last#? N                              # Y or N  'Output last sequence no. 
  33.  
  34. HCode X                               # X or X U  'Horizontal char.       
  35. VCode Y                               # Y or Y V  'Vertical char.         
  36. Dcode Z                               # Depth char.                       
  37. FeedCode F                            # Feed rate char.                   
  38.  
  39. Comment ( )                           # Begin End comment char.           
  40.  
  41. Spindle 3 4 5                         # Cw, ccw & stop m codes            
  42. Coolant 8 9 7                         # On, Off & Mist m codes            
  43. DComp 41 42 40                        # Left, Right & Cancel m codes      
  44. LComp 43 49                           # On & Off codes                    
  45.  
  46. Feed G1                             # Linear move                       
  47. Rapid G0                            # Rapid positioning word            
  48. Cw G2                               # Circular move clockwise           
  49. Ccw G3                              # Circular move counter clockwise   
  50.  
  51. Inc/Abs G 91 90                       # Inc & Abs char. & values          
  52.  
  53. Inch/MM 70 71                         # Inch & Metric g codes             
  54.  
  55. Spaces? N                             # Y or N  'Spaces between words     
  56.  
  57. Incremental? Y                        # Y or N  'Inc or abs output        
  58. CtrIncremental? Y                     # Y or N  'Inc or abs I & J         
  59. ByQuadrants? N                        # Y or N  'Break arcs at quadrants  
  60.  
  61. CtrCode I J                           # I J or R or I J K L               
  62. Helical? N
  63.  
  64. UppercaseComments? Y                  # Y or N 'Require uppercase comments
  65.  
  66. Drill                                 # Drilling canned/manual cycle      
  67. G81 X[H] Y[V] Z[D] R[Vclear] F[FRate]
  68. end cancel
  69.  
  70. Peck                                  # Pecking canned/manual cycle       
  71. G83 X[H] Y[V] Z[D] Q[VBite] R[Vclear] F[FRate]
  72. end cancel
  73.  
  74. Tap                                   # Tapping canned/manual cycle       
  75. G84 X[H] Y[V] Z[D] R[Vclear] F[Frate] Q[VBite]
  76. end cancel
  77.  
  78. LTap                                  # Left handed tapping cycle         
  79. G74 X[H] Y[V] Z[D] R[Vclear] F[Frate] Q[VBite]
  80. end cancel
  81.  
  82. Ream                                  # Reaming canned/manual cycle       
  83. G85 X[H] Y[V] Z[D] R[Vclear] F[FRate]
  84. end cancel
  85.  
  86. Bore                                  # Boring canned/manual cycle        
  87. G86 X[H] Y[V] Z[D] R[Vclear] F[FRate]
  88. end cancel
  89.  
  90. Back                                  # Back boring canned/manual cycle   
  91. G87 X[H] Y[V] Z[D] R[Vclear] F[FRate]
  92. end cancel
  93.  
  94. Cancel                                # Cancel a canned/manual cycle      
  95. G80
  96. end
  97.  
  98. StartCode                             # Start of the program              
  99. End
  100.  
  101. 1stToolChange                         # First tool change                 
  102. G90 G80 G40 G17
  103. G91
  104. T[Tool]
  105. M6
  106. G0 X[H] Y[V] M[Direct] S[Speed] T[NextTool]
  107. G43 Z[D] H[Lcomp]
  108. M[Cool]
  109. G91
  110. End
  111.  
  112. Infeed                                # Enable cutter comp                
  113. G[Side] X[H] Y[V] D[DComp] F[FRate]
  114. end
  115.  
  116. Outfeed                               # Disable cutter comp               
  117. G1 G40 X[H] Y[V]
  118. end
  119.  
  120. ToolChange                            # Secondary tool changes            
  121. M9
  122. g91 G28 z0
  123. G91 M6
  124. G90 G0 X[H] Y[V] M[Direct] S[Speed] T[NextTool]
  125. G43 Z[D] H[Lcomp]
  126. M[Cool]
  127. G91
  128. End
  129.  
  130. EndCode                               # End of the program                
  131. M9
  132. g91 G28 z0
  133. M30
  134. %0
  135. End
  136.  
  137. LineCode                              # Linear move                       
  138. G1 X[H] Y[V] Z[D]
  139. end
  140.  
  141. RapidCode                             # Rapid move                        
  142. G0 X[H] Y[V] Z[D]
  143. end
  144.  
  145.